home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / doc / libmusicbrainz3-6 / README.txt < prev   
Encoding:
Text File  |  2007-05-12  |  1.3 KB  |  45 lines

  1. ============================
  2.  MusicBrainz Client Library
  3. ============================
  4.  
  5. Documentation
  6. =============
  7.  
  8. To get started quickly have a look at the examples directory which
  9. contains various sample programs. API documentation can be generated
  10. using Doxygen (http://www.stack.nl/~dimitri/doxygen/). Online version of
  11. the API documentation can be found at:
  12.  
  13.   http://users.musicbrainz.org/~luks/docs/libmusicbrainz3/
  14.  
  15. Compiling and Linking
  16. =====================
  17.  
  18. This package provides a pkg-config script that returns the necessary compiler
  19. and linker flags, as well as the version number.  To build a small sample
  20. program one would use:
  21.  
  22.    g++ -o test_app test_app.cpp `pkg-config libmusicbrainz3 --cflags --libs`
  23.    
  24. If you don't want/can't use pkg-config and you are using the C API, make sure
  25. you link in the C++ standard library:
  26.    
  27.    gcc -o test_app test_app.c -lmusicbrainz3 -lm -lstdc++   
  28.  
  29. Contact
  30. =======
  31.  
  32. If you have any questions about this library, feel free to ask on the
  33. MusicBrainz development mailing list:
  34.  
  35.    http://lists.musicbrainz.org/mailman/listinfo/musicbrainz-devel
  36.  
  37. Please submit bug reports to the MusicBrainz bug tracking system:
  38.    
  39.    http://bugs.musicbrainz.org/
  40.  
  41. You can find out more about the MusicBrainz project by visiting its
  42. site:
  43.  
  44.    http://musicbrainz.org/
  45.